home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Comic Book Maker: The Smurfs
/
COMIC.iso
/
mac
/
data_m
/
CBA2_40
/
00019_credit-quit frameScript.ls
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2001-02-22
|
304 b
|
22 lines
property quitTimer
global gObj5
on exitFrame me
if voidp(quitTimer) then
set quitTimer to the ticks + (7 * 60)
end if
go(the frame)
end
on idle me
if quitTimer then
if the ticks > quitTimer then
mouseDown(me)
end if
end if
end
on mouseDown me
terminateProgram(gObj5)
end